onOperatorLogin (event)
Description
Event called an operator logs in.

Parameters
operatorID number
operatorName string
computerName string

Return value
not applicable

Example
-- create event handler for onOperatorLogin
function onOperatorLogin(operatorID, operatorName, computerName)
    app.showNotification("Welcome to Stock Tracker, " .. operatorName)
end

Comments

See also
onOperatorLogout (event)

Back